/* style.css */
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Tajawal', sans-serif;
}

body {
  background-color: #1a0b2e; /* Dark purple background */
  color: #f0f0f0;
  line-height: 1.6;
}

.container {
  max-width: 800px; /* Keep it narrow like a mobile app view */
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.top-bar {
  background-color: #120721;
  padding: 1rem;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-oval {
  background-color: #2a1147;
  color: #fff;
  padding: 0.5rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Hero Section */
.hero {
  padding: 2rem 0;
}

.contact-link {
  text-align: left; /* Top right in RTL */
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #ffffff;
  text-align: center;
}

/* Cards System */

/* New Hero Elements */
.limited-offer-banner {
  background-color: #ffd700;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.hero {
  text-align: center; /* Center everything in the hero section */
}

.product-hero-image {
  margin: 1rem 0 2rem 0;
  display: flex;
  justify-content: center;
}

.hero-product-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  display: block;
  animation: fadeInDown 1s ease-out forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-top-book {
  display: inline-block;
  margin-bottom: 2rem;
  max-width: 300px;
}
.card {
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

/* Order Card (Green) */
.order-card-link {
  text-decoration: none;
  display: block;
}

.order-card {
  background: linear-gradient(135deg, #00c9a7, #00e676);
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0, 201, 167, 0.2);
  transition: transform 0.2s ease;
}

.order-card:hover {
  transform: scale(1.02);
}

.status-indicator {
  font-weight: 700;
  font-size: 1.1rem;
}

.order-action {
  text-align: left;
}

.click-to-order {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.phone-number {
  font-size: 1.5rem;
  font-weight: 800;
  direction: ltr; /* Ensure number renders correctly */
}

/* Dark Cards (Address & Timing) */
.dark-card {
  background-color: #24133b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  padding-right: 0; /* Let accent handle left space */
}

.card-accent {
  width: 6px;
  position: absolute;
  right: 0; /* RTL left equivalent */
  top: 0;
  bottom: 0;
}

.gold-accent {
  background-color: #ffd700;
}

.card-content {
  padding: 1rem 1.5rem 1rem 1rem;
  width: 100%;
}

.card-label {
  text-align: left;
  color: #aaa;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.address-text, .timing-text {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: right;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gold-text {
  color: #ffd700;
  font-weight: 600;
  margin-top: 0.5rem;
}

.icon {
  font-size: 1.2rem;
}

/* Sections */
section {
  margin-bottom: 3rem;
}

.section-heading {
  font-size: 1.5rem;
  color: #ffd700; /* Gold accents for headings */
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Usage Section */
.usage-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.usage-step {
  display: flex;
  align-items: center;
  background-color: #24133b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 4px solid #00c9a7;
}

.step-number {
  background: linear-gradient(135deg, #00c9a7, #00e676);
  color: #000;
  font-size: 1.5rem;
  font-weight: 800;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 1.5rem;
  flex-shrink: 0;
}

.step-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f0f0f0;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background-color: #1a0b2e;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.review-card:hover .review-img {
  transform: scale(1.03);
}

/* FAQ & QA */
.faq .description {
  text-align: center;
  color: #ccc;
}

/* FAQ Items */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: #24133b;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  border-right: 4px solid #ffd700;
}

.faq-q {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.faq-a {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.7;
}

/* Countdown Timer */
.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 0.8rem 0 1.2rem;
}

.time-block {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  padding: 0.5rem 1rem;
  min-width: 60px;
  text-align: center;
}

.time-block span {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffd700;
  line-height: 1;
}

.time-block small {
  font-size: 0.65rem;
  color: #aaa;
}

.time-sep {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 1rem;
}

.qa {
  background-color: #24133b;
  padding: 2rem 0;
  border-radius: 16px;
}

.small-heading {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.qa-list {
  list-style: none;
}

.qa-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.qa-title {
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
}

.qa-subtext {
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

/* Sticky Footer */
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #120721;
  padding: 1rem;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
}

.btn-purchase {
  background: linear-gradient(135deg, #00b300, #00e676);
  color: #fff;
  text-decoration: none;
  width: 100%;
  max-width: 400px;
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.2rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(0, 200, 0, 0.4);
}

.btn-purchase:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 200, 0, 0.6);
}
