/* Premium Dark Theme with Glassmorphism */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #f8fafc;
  line-height: 1.6;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 8%;
  position: sticky;
  top: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  z-index: 1000;
}

.logo {
  max-width: 60px;
}

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

.brand {
  font-size: 1.5em;
  font-weight: 700;
  color: #38bdf8;
}

/* Menu */
.menu {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.menu a {
  text-decoration: none;
  font-weight: 600;
  color: #cbd5e1;
  transition: all 0.3s ease;
}

.menu a:hover {
  color: #38bdf8;
}

.cta-btn {
  padding: 8px 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  color: #fff !important;
  font-weight: 600;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 8%;
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

.hero h2 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 16px;
  color: #38bdf8;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 24px;
  color: #e2e8f0;
}

.primary-btn {
  padding: 14px 28px;
  border-radius: 14px;
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.25);
}

/* Premium Box */
.premium-box {
  max-width: 800px;
  margin: 60px auto;
  padding: 36px;
  background: rgba(30, 41, 59, 0.6);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.premium-box h2 {
  color: #38bdf8;
  font-size: 1.8em;
  margin-bottom: 16px;
}

.offer-list {
  margin: 16px 0;
  padding-left: 20px;
}

.offer-list li {
  margin-bottom: 10px;
}

/* Footer */
footer {
  text-align: center;
  padding: 24px 8%;
  background: rgba(15, 23, 42, 0.9);
  font-size: 0.9em;
  color: #94a3b8;
  margin-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    gap: 12px;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero h2 {
    font-size: 2em;
  }

  .premium-box {
    margin: 40px 16px;
    padding: 24px;
  }
}

/* -----------------------------
   Reviews page specific styles
   ----------------------------- */

.reviews-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 8%;
  min-height: 56vh;
  background: linear-gradient(180deg, rgba(14,20,30,0.35), rgba(6,10,15,0.45));
  text-align: center;
  position: relative; /* for safety */
}

/* Prevent any unwanted arrows or pseudo-elements */
.reviews-hero::before,
.reviews-hero::after {
  content: none !important;
  display: none !important;
}

.reviews-hero-inner {
  max-width: 900px;
  width: 100%;
  animation: fadeInUp 700ms ease both;
}

/* Big bold heading */
.reviews-title {
  font-size: 4rem;         /* very large and bold */
  line-height: 1;
  margin: 0;
  color: #ffffff;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 800;        /* extra bold */
  margin-bottom: 18px;
  text-shadow: 0 6px 30px rgba(0,0,0,0.6);
}

/* Coming soon text */
.coming-soon {
  font-size: 1.15rem;
  color: #cbd5e1;
  opacity: 0.95;
  margin: 0;
  font-weight: 600;

  /* Remove dashed box if applied */
  border: none !important;
  outline: none !important;
}

/* Also block any pseudo arrows/dashes */
.coming-soon::before,
.coming-soon::after {
  content: none !important;
  display: none !important;
}

/* subtle fade-in / slide-up */
@keyframes fadeInUp {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* make sure the header 'active' nav stands out */
.menu a.active,
.menu a.active:hover {
  color: #0f172a;
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  padding: 8px 14px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(99,102,241,0.12);
}

/* responsive tweaks for reviews */
@media (max-width: 768px) {
  .reviews-hero { padding: 72px 6%; }
  .reviews-title { font-size: 2.4rem; letter-spacing: 3px; }
  .coming-soon { font-size: 1rem; }
}

/* -----------------------------
   App Development page specific styles
   (matches Reviews UI)
   ----------------------------- */

.app-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 8%;
  min-height: 56vh;
  background: linear-gradient(180deg, rgba(14,20,30,0.35), rgba(6,10,15,0.45));
  text-align: center;
}

.app-hero-inner {
  max-width: 900px;
  width: 100%;
  animation: fadeInUp 700ms ease both;
}

/* Big bold heading for App Development */
.app-title {
  font-size: 4rem;         /* very large and bold */
  line-height: 1;
  margin: 0;
  color: #ffffff;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 18px;
  text-shadow: 0 6px 30px rgba(0,0,0,0.6);
}

/* Coming soon text (app page) */
.app-coming {
  font-size: 1.15rem;
  color: #cbd5e1;
  opacity: 0.95;
  margin: 0;
  font-weight: 600;
}

/* responsive tweaks for app page */
@media (max-width: 768px) {
  .app-hero { padding: 72px 6%; }
  .app-title { font-size: 2.4rem; letter-spacing: 3px; }
  .app-coming { font-size: 1rem; }
}

/* -----------------------------
   Contact page specific styles
   ----------------------------- */

.contact-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 8%;
  min-height: 40vh;
  background: linear-gradient(180deg, rgba(14,20,30,0.35), rgba(6,10,15,0.45));
  text-align: center;
}

.contact-hero-inner {
  max-width: 800px;
  width: 100%;
  animation: fadeInUp 700ms ease both;
}

.contact-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 0 6px 30px rgba(0,0,0,0.6);
}

.contact-sub {
  font-size: 1.15rem;
  color: #cbd5e1;
  opacity: 0.95;
  margin: 0;
  font-weight: 500;
}

.form-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 16px;
}

/* -----------------------------
   Pricing page specific styles
   ----------------------------- */

.pricing-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 8%;
  min-height: 40vh;
  background: linear-gradient(180deg, rgba(14,20,30,0.35), rgba(6,10,15,0.45));
  text-align: center;
}

.pricing-hero-inner {
  max-width: 800px;
  width: 100%;
  animation: fadeInUp 700ms ease both;
}

.pricing-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #38bdf8;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 6px 30px rgba(0,0,0,0.6);
}

.pricing-sub {
  font-size: 1.15rem;
  color: #cbd5e1;
  opacity: 0.95;
  font-weight: 500;
}

.pricing-sections {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 8%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.pricing-card {
  background: rgba(30, 41, 59, 0.65);
  padding: 28px;
  border-radius: 18px;
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 26px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 34px rgba(0,0,0,0.35);
}

.pricing-card h2 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: #6366f1;
}

.pricing-card h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #e2e8f0;
}

.pricing-card .offer-list {
  list-style: disc;
  padding-left: 20px;
  color: #cbd5e1;
}

.coming-soon {
  opacity: 0.85;
  border: 2px dashed #64748b;
}

.soon-label {
  font-weight: bold;
  font-size: 1.05rem;
  color: #64748b;
}

/* responsive tweaks */
@media (max-width: 768px) {
  .pricing-title { font-size: 2.4rem; }
  .pricing-sections { gap: 20px; padding: 0 6%; }
}

/* -----------------------------
   Chatbot Styles
   ----------------------------- */
.chatbot-container {
  max-width: 700px;
  margin: 50px auto;
  background: rgba(30, 41, 59, 0.6);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  padding: 20px;
}

.chat-window {
  max-height: 400px;
  overflow-y: auto;
  padding: 16px;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 12px;
  margin-bottom: 20px;
}

.user-msg, .bot-msg {
  margin: 8px 0;
  padding: 10px 14px;
  border-radius: 12px;
  max-width: 80%;
}

.user-msg {
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  color: #fff;
  align-self: flex-end;
  margin-left: auto;
}

.bot-msg {
  background: rgba(255,255,255,0.08);
  color: #e2e8f0;
  align-self: flex-start;
  margin-right: auto;
}

.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.chat-options button {
  flex: 1;
  min-width: 120px;
  padding: 10px;
  border: none;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chat-options button:hover {
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  color: #fff;
}

.chat-input {
  display: flex;
  gap: 10px;
}

.chat-input input {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.chat-input button {
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.chat-input button:hover {
  transform: translateY(-2px);
}
