/* ===================================================
   شركة مستقبل المتحدة المحدودة - الأنماط الرئيسية
   =================================================== */

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

/* ===== متغيرات الألوان ===== */
:root {
  --gold: #FFB800;
  --gold-light: #FFC933;
  --gold-dark: #CC9300;
  --black: #0C182A;
  --dark: #12243D;
  --dark-2: #1B365D;
  --dark-3: #224575;
  --dark-4: #2A548E;
  --gray: #888899;
  --gray-light: #BBBBC8;
  --white: #F5F5F0;
  --text: #E8E8E0;
  --danger: #E74C3C;
  --success: #2ECC71;

  --shadow-gold: 0 0 30px rgba(255, 184, 0, 0.25);
  --shadow-dark: 0 20px 60px rgba(12, 24, 42, 0.6);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 184, 0, 0.15);

  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Tajawal', sans-serif;
  background: var(--black);
  color: var(--text);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  line-height: 1.7;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Particles */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 7, 8, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(7, 7, 8, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.navbar-logo-text .company-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}

.navbar-logo-text .company-sub {
  font-size: 0.7rem;
  color: var(--gray-light);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.navbar-nav a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-light);
  transition: var(--transition);
  position: relative;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 16px;
  left: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 1px;
}

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

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
  transform: scaleX(1);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

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

.btn-nav-booking {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.btn-nav-booking:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.5);
}

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

.navbar-toggle span {
  width: 25px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Ticker ===== */
.ticker-bar {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.ticker-track {
  display: flex;
  gap: 4rem;
  animation: ticker 25s linear infinite;
  width: max-content;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.28) saturate(0.7);
  transform: scale(1.05);
  transition: transform 10s ease;
}

.hero:hover .hero-bg {
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 7, 8, 0.9) 0%, rgba(212, 160, 23, 0.05) 50%, rgba(7, 7, 8, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  animation: heroFadeIn 1.2s ease forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(212, 160, 23, 0);
  }
}

.hero-logo {
  width: 400px;
  height: 400px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--white);
}

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

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.8rem;
  animation: bounce 2s infinite;
}

.hero-scroll i {
  font-size: 1.2rem;
  color: var(--gold);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-size: 1rem;
  font-weight: 800;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.4);
  font-family: 'Tajawal', sans-serif;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 160, 23, 0.55);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: var(--glass);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  font-family: 'Tajawal', sans-serif;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  font-family: 'Tajawal', sans-serif;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* ===== Stats ===== */
.stats-section {
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number span {
  color: var(--gold);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-light);
}

/* ===== Sections ===== */
.section {
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.section-title .gold {
  color: var(--gold);
}

.section-desc {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto;
}

.gold-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 1rem auto;
}

/* ===== Equipment Cards ===== */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.equipment-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}

.equipment-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold), var(--shadow-dark);
}

.equipment-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.equipment-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.equipment-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
}

.equipment-card-status {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  border-radius: 50px;
  font-size: 0.75rem;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  animation: blink 1.5s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.equipment-card-body {
  padding: 1.5rem;
}

.equipment-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.equipment-card-desc {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.equipment-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray-light);
}

.spec-item i {
  color: var(--gold);
  font-size: 0.9rem;
  width: 16px;
}

.equipment-card-footer {
  display: flex;
  gap: 0.75rem;
  border-top: 1px solid var(--dark-4);
  padding-top: 1.25rem;
}

.btn-book {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Tajawal', sans-serif;
}

.btn-book:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-gold);
}

.btn-details {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: var(--dark-3);
  color: var(--gray-light);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--dark-4);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Tajawal', sans-serif;
}

.btn-details:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== Filters ===== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.filter-btn {
  padding: 10px 24px;
  background: var(--dark-3);
  color: var(--gray-light);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid var(--dark-4);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Tajawal', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

/* ===== Features ===== */
.features-section {
  background: linear-gradient(180deg, var(--black) 0%, var(--dark) 50%, var(--black) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  padding: 2.5rem 2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.05), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.15), rgba(212, 160, 23, 0.05));
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--gold);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-gold);
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== Testimonials ===== */
.testimonials-section {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  animation: scrollTest 30s linear infinite;
  width: max-content;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes scrollTest {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  min-width: 340px;
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius);
  padding: 2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
  color: var(--gold);
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.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-size: 1.2rem;
  color: var(--black);
  font-weight: 800;
}

.testimonial-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ===== Booking ===== */
.booking-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--black) 100%);
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.booking-info {
  padding: 2rem 0;
}

.booking-info h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}

.booking-info p {
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.booking-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-light);
}

.booking-features li i {
  color: var(--gold);
  font-size: 1.1rem;
}

.booking-form {
  background: var(--dark-2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-dark);
}

.form-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-title i {
  color: var(--gold);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-light);
  margin-bottom: 0.5rem;
}

.form-label span {
  color: var(--danger);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  font-family: 'Tajawal', sans-serif;
  transition: var(--transition);
  direction: rtl;
  text-align: right;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
  background: var(--dark-4);
}

.form-control::placeholder {
  color: var(--gray);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23D4A017' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
}

.rental-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.rental-type-btn {
  padding: 14px;
  background: var(--dark-3);
  border: 2px solid var(--dark-4);
  border-radius: var(--radius-sm);
  color: var(--gray-light);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-family: 'Tajawal', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.rental-type-btn:hover,
.rental-type-btn.selected {
  border-color: var(--gold);
  background: rgba(212, 160, 23, 0.1);
  color: var(--gold);
}

.rental-type-btn i {
  font-size: 1rem;
}

.btn-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Tajawal', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-submit i {
  font-size: 1.2rem;
}

/* ===== Success Overlay ===== */
.success-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.success-overlay.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.success-card {
  background: var(--dark-2);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  max-width: 450px;
  width: 90%;
  box-shadow: var(--shadow-gold);
  animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--success), #27ae60);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: white;
  animation: successBounce 0.6s ease 0.2s both;
}

@keyframes successBounce {
  0% {
    transform: scale(0);
  }

  60% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.success-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.success-desc {
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.success-number {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 50px;
  color: #25D366;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
}

.whatsapp-float-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  text-decoration: none;
  animation: wpPulse 2s infinite;
  cursor: pointer;
  border: none;
}

@keyframes wpPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float-btn:hover {
  transform: scale(1.15);
}

/* ===== Blog ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.blog-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-card-cat {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
}

.blog-card-body {
  padding: 1.75rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
}

.blog-card-meta i {
  color: var(--gold);
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.5;
  transition: var(--transition);
}

.blog-card:hover .blog-card-title {
  color: var(--gold);
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 700;
  transition: var(--transition);
}

.btn-read-more:hover {
  gap: 12px;
}

/* ===== CS Widget ===== */
.cs-widget {
  position: fixed;
  bottom: 7rem;
  left: 2rem;
  z-index: 998;
}

.cs-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 800;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: 'Tajawal', sans-serif;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  animation: csFloat 3s ease-in-out infinite;
  position: relative;
}

@keyframes csFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.cs-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(212, 160, 23, 0.5);
}

.cs-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

.notification-badge {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 18px;
  height: 18px;
  background: var(--danger);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 1s infinite;
}

.cs-popup {
  position: fixed;
  bottom: 12rem;
  left: 2rem;
  width: 320px;
  background: var(--dark-2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  z-index: 997;
  display: none;
  box-shadow: var(--shadow-dark), var(--shadow-gold);
}

.cs-popup.show {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cs-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cs-popup-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--white);
  font-size: 0.95rem;
}

.cs-popup-close {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

.cs-popup-close:hover {
  color: var(--white);
}

.cs-chat-messages {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
  max-height: 150px;
  overflow-y: auto;
}

.cs-msg {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.cs-msg.agent {
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.2);
  color: var(--text);
  margin-left: 1.5rem;
  border-radius: 12px 12px 4px 12px;
}

.cs-msg.user {
  background: var(--dark-3);
  color: var(--text);
  margin-right: 1.5rem;
  border-radius: 12px 12px 12px 4px;
}

.cs-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cs-quick-btn {
  padding: 10px 14px;
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-sm);
  color: var(--gray-light);
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Tajawal', sans-serif;
  text-align: right;
}

.cs-quick-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--glass-border);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.footer-logo-text .company-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
}

.footer-logo-text .company-sub {
  font-size: 0.75rem;
  color: var(--gray);
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

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

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

.footer-links a {
  font-size: 0.875rem;
  color: var(--gray);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transition: var(--transition);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  font-size: 0.9rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--dark-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--gray);
}

.footer-copyright span {
  color: var(--gold);
  font-weight: 700;
}

/* ===== Loader ===== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.5s ease;
}

.page-loader.hide {
  opacity: 0;
  pointer-events: none;
}

.loader-logo {
  width: 500px;
  height: 500px;
  object-fit: contain;
  animation: logoFloat 1.5s ease-in-out infinite;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--dark-3);
  border-radius: 2px;
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: loadProgress 1.5s ease forwards;
}

@keyframes loadProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.loader-text {
  font-size: 0.875rem;
  color: var(--gray);
}

/* ===== Scroll-top ===== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: var(--shadow-gold);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px) scale(1.05);
}

/* ===== Page Hero ===== */
.page-hero {
  height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 75px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.2);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.page-hero-breadcrumb a {
  color: var(--gold);
}

.page-hero-breadcrumb i {
  font-size: 0.75rem;
  transform: rotate(180deg);
}

/* ===== Modal ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 5000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  padding: 1rem;
}

.modal-overlay.show {
  display: flex;
  animation: fadeIn 0.2s ease;
}

.modal {
  background: var(--dark-2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  max-width: 750px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: scaleIn 0.3s ease;
}

.modal-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.modal-body {
  padding: 2rem;
}

.modal-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}

.modal-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--dark-3);
  border-radius: var(--radius);
}

.modal-spec-label {
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 4px;
}

.modal-spec-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.modal-desc {
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.modal-close {
  position: sticky;
  top: 1rem;
  float: left;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--dark-4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  margin: 1rem;
  font-size: 1rem;
  transition: var(--transition);
  z-index: 10;
}

.modal-close:hover {
  background: var(--danger);
  border-color: var(--danger);
}

/* ===== Toast ===== */
.toast-container {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(20px);
  white-space: nowrap;
  pointer-events: auto;
}

.toast.success {
  background: rgba(46, 204, 113, 0.9);
  color: white;
}

.toast.error {
  background: rgba(231, 76, 60, 0.9);
  color: white;
}

.toast.info {
  background: rgba(212, 160, 23, 0.9);
  color: var(--black);
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== Search Bar ===== */
.search-bar {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.search-input {
  flex: 1;
  padding: 14px 20px;
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: 'Tajawal', sans-serif;
  transition: var(--transition);
  direction: rtl;
}

.search-input:focus {
  outline: none;
  border-color: var(--gold);
}

.search-btn {
  padding: 14px 24px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  font-family: 'Tajawal', sans-serif;
}

.search-btn:hover {
  background: var(--gold-light);
  transform: scale(1.05);
}

/* ===== Live Badge ===== */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--success);
  margin-bottom: 2rem;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: blink 1s infinite;
}

/* ===== Fade-in Animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-wrapper {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .navbar { height: auto; padding: 10px 1rem; }
  .navbar-logo img { width: 100px; height: 100px; }
  .hero-logo { width: 220px; height: 220px; }
  .navbar-nav {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: rgba(7, 7, 8, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-bottom: 1px solid var(--glass-border);
    gap: 0.25rem;
  }

  .navbar-nav.open a {
    padding: 12px 1rem;
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .hero-title {
    font-size: 2rem;
  }

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

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

  .rental-types {
    grid-template-columns: 1fr 1fr;
  }

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

  .modal-specs {
    grid-template-columns: repeat(2, 1fr);
  }

  .whatsapp-float {
    left: 1rem;
    bottom: 1rem;
  }

  .cs-widget {
    left: 1rem;
    bottom: 5.5rem;
  }

  .cs-popup {
    left: 1rem;
    width: calc(100vw - 2rem);
    bottom: 10rem;
  }

  /* Compact UI improvements for mobile */
  .section {
    padding: 3rem 1rem;
  }
  .stats-section {
    padding: 2rem 1rem;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .equipment-card-img {
    height: 160px;
  }
  .equipment-card-body {
    padding: 1rem;
  }
  .equipment-card-title {
    font-size: 1.1rem;
  }
  .filter-bar {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  .btn-primary, .btn-secondary, .btn-whatsapp, .btn-book {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .equipment-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .navbar-logo img { width: 80px; height: 80px; }
  .hero-logo { width: 160px; height: 160px; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .success-actions {
    flex-direction: column;
  }

  .rental-types {
    grid-template-columns: 1fr;
  }
}

/* Custom Headings Font */
h1, h2, h3, h4, h5, h6, .hero-title, .section-title, .feature-title, .equipment-card-title, .blog-card-title { font-family: 'Cairo', sans-serif !important; }
