/* ─── FALCON WEBSITE MAIN STYLESHEET ─── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --primary: #38BDF8;
  --primary-dark: #0284C7;
  --primary-light: rgba(56, 189, 248, 0.12);
  --accent: #0284C7;
  --sky-blue: #38BDF8;
  --light-blue: #BAE6FD;
  --text: #FFFFFF;
  --text-muted: #94A3B8;
  --text-dim: #CBD5E1;
  --border: rgba(56, 189, 248, 0.18);
  --border-glow: rgba(56, 189, 248, 0.35);
  --bg-dark: #041021;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-hover: rgba(255, 255, 255, 0.1);
  --whatsapp: #25D366;
  --facebook: #1877F2;
  --instagram: #E1306C;
}

body {
  font-family: 'Cairo', -apple-system, BlinkMacSystemFont, sans-serif;
  direction: rtl;
  background-color: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* AMBIENT GLOW LIGHTS (Same as QR page) */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  top: -120px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22) 0%, rgba(0, 0, 0, 0) 70%);
  animation: pulseGlow1 9s ease-in-out infinite alternate;
}

.bg-glow-2 {
  bottom: -150px;
  left: -100px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  animation: pulseGlow2 11s ease-in-out infinite alternate-reverse;
}

@keyframes pulseGlow1 {
  0% { transform: scale(1) translate(0, 0); opacity: 0.7; }
  100% { transform: scale(1.15) translate(30px, 30px); opacity: 1; }
}

@keyframes pulseGlow2 {
  0% { transform: scale(1) translate(0, 0); opacity: 0.6; }
  100% { transform: scale(1.12) translate(-20px, -20px); opacity: 0.9; }
}

/* SITE WRAPPER */
.site-wrapper {
  position: relative;
  z-index: 1;
  background-image: radial-gradient(circle at 50% 0%, #0a274e 0%, #041021 75%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── NAVIGATION ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 16, 33, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  transition: all 0.3s;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(145deg, #0d3666, #061933);
  border: 1.5px solid rgba(56, 189, 248, 0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.15);
}

.logo-icon.small {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
  line-height: 1.1;
}

.logo-sub {
  font-size: 11px;
  color: var(--text-muted);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.nav-cta {
  background: linear-gradient(135deg, #0284C7, #0369A1);
  color: white;
  text-decoration: none;
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.35);
}

.nav-cta:hover {
  background: linear-gradient(135deg, #38BDF8, #0284C7);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(56, 189, 248, 0.45);
}

/* ─── HERO SECTION ─── */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6.5rem 0 5.5rem;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/hero.png');
  background-size: cover;
  background-position: center 35%;
  z-index: 0;
  filter: brightness(1.05) contrast(1.08);
}

/* INTENSE LED GLOW HIGHLIGHTS OVER SHOWROOM LIGHTS DISPLAY */
.hero-light-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

/* Left Wall Lights Glow (Red & Warm LED boards) */
.hero-glow-left {
  top: 15%;
  left: -2%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.55) 0%, rgba(245, 158, 11, 0.3) 40%, transparent 70%);
  animation: ledPulse 4s ease-in-out infinite alternate;
}

/* Right Wall Lights Glow (White & Red Tail light boards) */
.hero-glow-right {
  top: 15%;
  right: -2%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(239, 68, 68, 0.35) 45%, transparent 70%);
  animation: ledPulse 5s ease-in-out infinite alternate-reverse;
}

/* Center Sign Glow (FALCON POWER Sign) */
.hero-glow-center {
  top: 28%;
  left: 30%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.4) 0%, rgba(245, 158, 11, 0.25) 50%, transparent 70%);
  animation: ledPulse 6s ease-in-out infinite alternate;
}

@keyframes ledPulse {
  0% { opacity: 0.75; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(4, 16, 33, 0.85) 0%,
    rgba(4, 16, 33, 0.42) 50%,
    rgba(4, 16, 33, 0.95) 100%
  );
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 380px;
}

.hero-content {
  max-width: 600px;
}

.hero-main-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-sub-title {
  color: var(--primary);
  font-size: 52px;
}

.hero-tagline {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  max-width: 500px;
}

.btn-shop-now {
  background: linear-gradient(135deg, #1D61E7, #0B48C4);
  color: white;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 24px rgba(29, 97, 231, 0.45);
}

.btn-shop-now:hover {
  background: linear-gradient(135deg, #38BDF8, #1D61E7);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.55);
}



/* FLOATING FEATURE BAR BELOW HERO */
.hero-features-bar-wrap {
  position: relative;
  z-index: 10;
  margin-top: -35px;
}

.hero-features-bar {
  background: rgba(10, 26, 50, 0.88);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hbar-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hbar-icon {
  width: 46px;
  height: 46px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.hbar-text strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF;
}

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

@media (max-width: 992px) {
  .hero-features-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hero-features-bar {
    grid-template-columns: 1fr;
  }
}

/* ─── GENERAL SECTIONS ─── */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  background: rgba(56, 189, 248, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.7rem;
}

.section-header p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── FEATURES / WHY US ─── */
.features-section {
  background: rgba(7, 21, 41, 0.4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.15);
}

.feature-icon-wrapper {
  width: 54px;
  height: 54px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 1.2rem;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── GALLERY / SHOWCASE SECTION ─── */
.gallery-section {
  background: rgba(4, 16, 33, 0.6);
  border-bottom: 1px solid var(--border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}

.gallery-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(56, 189, 248, 0.2);
}

.gallery-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #000;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

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

.gallery-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(4, 16, 33, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.35);
  backdrop-filter: blur(8px);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.gallery-info {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.gallery-info h3 {
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
  line-height: 1.35;
}

.gallery-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── ABOUT SECTION ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.about-text h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.about-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.about-highlight {
  background: rgba(255, 255, 255, 0.05);
  border-right: 4px solid var(--primary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--border);
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  margin: 1.5rem 0;
  font-size: 14px;
  color: var(--light-blue);
  font-weight: 600;
  display: flex;
  gap: 12px;
  align-items: center;
}

.about-highlight i {
  font-size: 26px;
  color: var(--primary);
  flex-shrink: 0;
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.value-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.value-icon {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 10px;
}

.value-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.value-card p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── DIRECT CTA BANNER ─── */
.cta-banner-section {
  padding: 2rem 0 4rem;
}

.cta-banner-card {
  background: linear-gradient(135deg, rgba(8, 37, 82, 0.9) 0%, rgba(4, 16, 33, 0.95) 100%);
  border: 1.5px solid var(--border-glow);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.cta-banner-content h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.cta-banner-content p {
  font-size: 15px;
  color: var(--light-blue);
}

.btn-whatsapp-cta {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  white-space: nowrap;
}

.btn-whatsapp-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

/* ─── CONTACT SECTION ─── */
.contact-section {
  background: rgba(7, 21, 41, 0.3);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: flex;
  justify-content: center;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(12px);
  width: 100%;
  max-width: 650px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.contact-info-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.6rem;
  text-align: center;
}

.contact-subtext {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 2rem;
  text-align: center;
}

.contact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 2rem;
}

.contact-item-link,
.contact-item-static {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(56, 189, 248, 0.12);
  padding: 14px 16px;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.contact-item-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.item-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

.contact-list strong {
  font-size: 14px;
  color: var(--text);
  font-weight: 700;
}

.social-links-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  color: white;
  transition: all 0.25s ease;
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.1);
}

.social-btn.wa { background: var(--whatsapp); box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35); }
.social-btn.fb { background: var(--facebook); box-shadow: 0 4px 14px rgba(24, 119, 246, 0.35); }
.social-btn.ig { background: var(--instagram); box-shadow: 0 4px 14px rgba(225, 48, 108, 0.35); }

@media (max-width: 600px) {
  .contact-list {
    grid-template-columns: 1fr;
  }
}


/* ─── FOOTER ─── */
footer {
  background: #030B15;
  border-top: 1px solid var(--border);
  padding: 2.2rem 0;
  margin-top: auto;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: white;
}

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

.copyright {
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── SPLASH SCREEN ─── */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #082552 0%, #041021 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
  color: white;
}

#splash-screen.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-content {
  text-align: center;
}

.splash-logo-img {
  width: 240px;
  max-width: 80vw;
  height: auto;
  opacity: 0;
  transform: scale(0.75) translateY(30px);
  animation: logoIntro 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
  filter: drop-shadow(0 0 30px rgba(56, 189, 248, 0.35));
}

@keyframes logoIntro {
  0% {
    transform: scale(0.75) translateY(30px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .hero-container,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cta-banner-card {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-title .highlight-text {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 1.2rem;
  }

  .nav-links {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}