/* --- Service Page Specific Styles --- */

.service-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card .card-title {
  margin-top: 0.5rem;
}

/* Inquiry Modal */
.inquiry-modal-content {
  max-width: 520px;
  width: 100%;
  padding: 2.5rem;
  border-radius: 20px;
  overflow-y: auto;
  max-height: 90vh;
}

.inquiry-modal-preview {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, rgba(18, 82, 136, 0.04), rgba(18, 82, 136, 0.06));
}

.inquiry-modal-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.inquiry-modal-heading {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  text-align: center;
}

.inquiry-modal-heading span {
  color: var(--color-primary);
}

.inquiry-modal-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 1.75rem;
}

.inquiry-modal-form .contact-form {
  box-shadow: none;
  padding: 0;
  border: none;
}

#inquiry-modal-close {
  color: var(--text-dark);
  top: 0.75rem;
  right: 1rem;
  font-size: 1.25rem;
}

/* App Development */
.app-hero {
  position: relative;
  background: radial-gradient(circle at bottom right, rgba(99, 210, 142, 0.08) 0%, rgba(248, 250, 252, 0) 60%), var(--bg-main);
  padding: 10rem 0 6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.green-glow-btn {
  background-color: var(--color-success);
  color: var(--text-dark);
  box-shadow: 0 0 25px rgba(99, 210, 142, 0.3);
  font-weight: 700;
}

.green-glow-btn:hover {
  box-shadow: 0 0 35px rgba(99, 210, 142, 0.6);
  transform: translateY(-3px);
  background-color: #d1ffd6;
}

.phone-mockup {
  width: 250px;
  height: 480px;
  border: 8px solid #1a2638;
  border-radius: 36px;
  background-color: #070c18;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.phone-speaker {
  width: 60px;
  height: 12px;
  background-color: #1a2638;
  border-radius: 6px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-screen {
  height: 100%;
  padding: 3rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Digital Marketing */
.digital-hero {
  position: relative;
  background: radial-gradient(circle at top right, rgba(206, 255, 102, 0.08) 0%, rgba(248, 250, 252, 0) 60%), var(--bg-main);
  padding: 10rem 0 6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.neon-glow-btn {
  background-color: var(--color-yellow);
  color: #125288;
  font-weight: 700;
}

.neon-glow-btn:hover {
  transform: translateY(-3px);
  background-color: #e0a800;
  color: #125288;
}

.feature-badge {
  background: rgba(206, 255, 102, 0.08);
  border: 1px solid rgba(206, 255, 102, 0.2);
  color: var(--color-accent);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1.5rem;
}

/* Software Development */
.software-hero {
  position: relative;
  background: radial-gradient(circle at top left, rgba(165, 51, 255, 0.08) 0%, rgba(248, 250, 252, 0) 60%), var(--bg-main);
  padding: 10rem 0 6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.purple-glow-btn {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 0 25px rgba(165, 51, 255, 0.3);
  font-weight: 700;
}

.purple-glow-btn:hover {
  box-shadow: 0 0 35px rgba(165, 51, 255, 0.6);
  transform: translateY(-3px);
  background-color: #b95eff;
}

.console-mockup {
  background-color: #01040a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  font-family: 'Space Mono', Courier, monospace;
  padding: 1.5rem;
  font-size: 0.85rem;
  color: #8b949e;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.console-header {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 0.5rem;
}

.console-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.console-green { color: var(--color-success); }
.console-blue { color: var(--color-secondary); }
.console-accent { color: var(--color-accent); }

/* Website Development */
.web-hero {
  position: relative;
  background: radial-gradient(circle at top left, rgba(0, 229, 255, 0.08) 0%, rgba(248, 250, 252, 0) 60%), var(--bg-main);
  padding: 10rem 0 6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cyan-glow-btn {
  background-color: var(--color-secondary);
  color: var(--text-dark);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.3);
  font-weight: 700;
}

.cyan-glow-btn:hover {
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.6);
  transform: translateY(-3px);
  background-color: #d1f9ff;
}

.mockup-window {
  background: #0d1527;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mockup-header {
  background: #070c18;
  padding: 0.5rem 1rem;
  display: flex;
  gap: 0.4rem;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}