/* ============================================================
   hire.css — Hire Me / Services Page Styles
   ============================================================ */

/* --- Hero --- */
.hire-main {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}

.hire-hero {
  text-align: center;
  padding: 5rem 1rem 3.5rem;
}

.hire-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(6, 214, 160, 0.08);
  border: 1px solid rgba(6, 214, 160, 0.25);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1.4rem;
}

.hire-hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hire-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
}

.hire-hero-sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 2.5rem;
}

/* --- Service Card --- */
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent3));
  opacity: 0;
  transition: opacity 0.25s;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hl);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 0 1px var(--border-hl);
}

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

/* Featured card */
.service-card.featured {
  border-color: rgba(0, 212, 255, 0.3);
  background: linear-gradient(160deg, #0f1f2e, var(--card));
}

.service-card.featured::before { opacity: 1; }

.featured-ribbon {
  position: absolute;
  top: 18px; right: -28px;
  background: var(--accent);
  color: var(--bg);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 36px;
  transform: rotate(35deg);
}

/* Icon */
.service-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,212,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.service-card.featured .service-icon {
  background: rgba(0, 212, 255, 0.12);
  border-color: rgba(0, 212, 255, 0.25);
}

/* Tag */
.service-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

/* Heading */
.service-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

/* Override global h2 styles */
.service-card h2::before { display: none !important; }

/* Description */
.service-desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

/* Features list */
.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.83rem;
  color: var(--text);
  line-height: 1.5;
}

.service-features li i {
  color: var(--green);
  font-size: 0.7rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Price block */
.price-block {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.price-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.price-usd {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
}

.price-inr {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent3);
}

.price-unit {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--muted);
}

/* CTA button */
.hire-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg) !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  border-bottom: none !important;
  letter-spacing: 0.2px;
  width: 100%;
}

.hire-cta::after { display: none !important; }

.hire-cta:hover {
  background: #fff;
  color: var(--bg) !important;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.35);
  transform: translateY(-1px);
  text-decoration: none !important;
}

.hire-cta i { font-size: 0.8rem; }

/* --- Bottom note --- */
.hire-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.hire-note i {
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.hire-note p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* --- Responsive --- */
@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
  .hire-hero { padding: 3.5rem 0.5rem 2.5rem; }
  .service-card { padding: 1.5rem; }
}

/* ============================================================
   Reviews Section
   ============================================================ */

.reviews-section {
  max-width: 860px;
  margin: 0 auto 2.5rem;
}

.reviews-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.4rem;
}

.reviews-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.reviews-title::before { display: none !important; }

.reviews-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 20px;
}

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

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem 1.5rem;
  transition: border-color 0.25s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: -10px; right: 16px;
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.06;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  border-color: var(--border-hl);
  transform: translateY(-3px);
}

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

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  color: var(--bg);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.review-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

.review-service {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.67rem;
  color: var(--accent);
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-stars {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

.review-stars i {
  color: #f4c542;
  font-size: 0.72rem;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
}

@media (max-width: 720px) {
  .reviews-grid { grid-template-columns: 1fr; }
}