:root {
  --primary: #0A2342;
  --accent: #00B86B;
  --secondary: #F4A261;
  --light: #F9FAFB;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: var(--light);
  color: var(--primary);
  line-height: 1.6;
}

/* Hero */
.hero {
  background: var(--primary);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
}

.hero .btn {
  padding: 0.8rem 1.5rem;
  margin: 0.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn.primary { background: var(--accent); color: #fff; }
.btn.secondary { background: var(--secondary); color: #fff; }

.btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 18px rgba(0, 184, 107, 0.5); /* green glow */
}

/* Optional: give secondary button its own glow */
.btn.secondary:hover {
  box-shadow: 0 0 18px rgba(244, 162, 97, 0.6); /* orange glow */
}


/* Sections */
section { padding: 3rem 2rem; max-width: 1000px; margin: auto; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.card, .tier, .va-card {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}

.card:hover, .tier:hover, .va-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Service Tile Headers */
.tier h3 {
  margin-top: 0;
  color: white;
  padding: 0.5rem;
  border-radius: 5px;
}

.tier:nth-child(1) h3 { background: #00B86B; }
.tier:nth-child(2) h3 { background: #0A2342; }
.tier:nth-child(3) h3 { background: #F4A261; }
.tier:nth-child(4) h3 { background: #9B59B6; } /* Purple */


/* Pricing Table */
table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
table th, table td {
  border: 1px solid #ddd;
  padding: 0.8rem;
  text-align: center;
}
table th { background: var(--primary); color: #fff; }

/* VA List */
#va-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.va-card h3 { margin-top: 0; }
.status {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.online { background: var(--accent); }
.offline { background: red; }

/* Bio & Consultation */
.bio, .consultation {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin: 2rem auto;
  max-width: 800px;
}

.consultation form {
  display: flex;
  flex-direction: column;
}

.consultation input, .consultation textarea {
  margin-bottom: 1rem;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.consultation button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.8rem;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

/* Contact Section */
#contact {
  text-align: center;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.icon-btn {
  font-size: 1.8rem;
  color: white;
  background: #333;
  padding: 0.8rem;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.icon-btn:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.icon-btn.whatsapp { background: #25d366; }
.icon-btn.telegram { background: #0088cc; }
.icon-btn.call { background: #00B86B; }

/* Stack hero buttons vertically on small screens */
@media (max-width: 768px) {
  .hero .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero .cta-buttons .btn {
    width: 80%; /* optional: make buttons wider on mobile */
    text-align: center;
  }
}
.welcome-text {
  color: #77a6e1;       /* gold/yellow */
  font-style: italic;   /* makes it italic */
  text-shadow: 0 0 8px rgb(0, 0, 0); /* optional glow */
}
