/* =========================================
   Design System & Variables
   ========================================= */
:root {
  /* Colors - Premium Dark Mode with Gold/Amber accents */
  --primary: #f59e0b; /* Amber/Gold */
  --primary-hover: #d97706;
  --bg-main: #0B0F19; /* Deep Navy Dark */
  --bg-secondary: #111827;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);

  /* Shadows */
  --shadow-glow: 0 0 30px rgba(245, 158, 11, 0.2);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Tajawal', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* =========================================
   Typography
   ========================================= */
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 24px;
}

.highlight {
  background: linear-gradient(135deg, var(--primary), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #fbbf24);
  color: #000;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--text-main);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 8px 24px;
}

.btn-outline:hover {
  background: var(--primary);
  color: #000;
}

.btn-large {
  padding: 20px 48px;
  font-size: 1.3rem;
  width: 100%;
}

/* =========================================
   Header & Navbar
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 100;
  transition: var(--transition);
  background: rgba(11, 15, 25, 0.8);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-main);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
  position: relative;
  padding: 180px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Background Gradients/Shapes */
.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(245, 158, 11, 0.15);
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: rgba(59, 130, 246, 0.1);
  bottom: -200px;
  left: -200px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

/* Hero Image & Glass Frame */
.image-glass-frame {
  position: relative;
  padding: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  transform: rotate(-2deg);
  transition: var(--transition);
}

.image-glass-frame:hover {
  transform: rotate(0deg) translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.image-glass-frame img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* =========================================
   Sections & Layout
   ========================================= */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.grid {
  display: grid;
  gap: 30px;
}

/* =========================================
   Glass Cards (Services)
   ========================================= */
.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: var(--shadow-glow);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(245, 158, 11, 0.1);
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

/* =========================================
   Testimonials
   ========================================= */
.testimonials {
  background-color: var(--bg-secondary);
}

.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 40px;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 40px;
  color: rgba(245, 158, 11, 0.1);
}

.testimonial-card p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.client-info strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-main);
}

.client-info span {
  font-size: 0.9rem;
  color: var(--primary);
}

/* =========================================
   Pricing / CTA
   ========================================= */
.cta-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 60px !important;
  border-color: rgba(245, 158, 11, 0.3);
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.price {
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.amount {
  font-size: 5rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1;
}

.currency {
  font-size: 2rem;
  color: var(--primary);
  align-self: flex-start;
  margin-top: 10px;
}

.period {
  color: var(--text-muted);
  text-decoration: line-through;
  align-self: flex-end;
  margin-bottom: 10px;
}

.features-list {
  text-align: right;
  margin: 0 auto 40px;
  max-width: 300px;
}

.features-list li {
  margin-bottom: 16px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.features-list i {
  color: #10b981; /* Success Green */
}

.guarantee {
  margin-top: 24px;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* =========================================
   Footer
   ========================================= */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 40px 0;
  background: var(--bg-secondary);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  color: #000;
  transform: translateY(-3px);
}

/* =========================================
   Utility Animations
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .features-list {
    text-align: right; /* Keep RTL layout neat */
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* simple mobile nav hide for now */
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .cta-box {
    padding: 30px !important;
  }
  
  .amount {
    font-size: 3.5rem;
  }
}
